home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / reswtch2 / rwatch.dpr < prev    next >
Text File  |  1996-04-08  |  306b  |  16 lines

  1. program Rwatch;
  2.  
  3. uses
  4.   Forms,
  5.   Reswatch in 'RESWATCH.PAS' {RWMain},
  6.   Rwabout in 'RWABOUT.PAS' {RWAboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'Resource Watcher';
  12.   Application.CreateForm(TRWMain, RWMain);
  13.   Application.CreateForm(TRWAboutBox, RWAboutBox);
  14.   Application.Run;
  15. end.
  16.